home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Personal Computer World 2009 February
/
PCWFEB09.iso
/
Software
/
Linux
/
Kubuntu 8.10
/
kubuntu-8.10-desktop-i386.iso
/
casper
/
filesystem.squashfs
/
usr
/
lib
/
pm-utils
/
sleep.d
/
95led
< prev
next >
Wrap
Text File
|
2008-10-15
|
216b
|
16 lines
#!/bin/sh
# IBM specific hook to handle the suspend LED.
# TODO: Merge with 05led.
[ -f /proc/acpi/ibm/led ] || exit $NA
case "$1" in
thaw|resume)
echo "7 blink" >/proc/acpi/ibm/led
;;
*)
;;
esac
exit $NA